home *** CD-ROM | disk | FTP | other *** search
/ Windows Game Programming for Dummies (2nd Edition) / WinGamProgFD.iso / mac / DirectX SDK / DXSDK / samples / Multimedia / VBSamples / DirectPlay / Conferencer / frmSplash.frm < prev    next >
Text File  |  2001-10-08  |  2KB  |  47 lines

  1. VERSION 5.00
  2. Begin VB.Form frmSplash 
  3.    BorderStyle     =   0  'None
  4.    ClientHeight    =   3675
  5.    ClientLeft      =   0
  6.    ClientTop       =   0
  7.    ClientWidth     =   5970
  8.    LinkTopic       =   "Form1"
  9.    MaxButton       =   0   'False
  10.    MinButton       =   0   'False
  11.    Picture         =   "frmSplash.frx":0000
  12.    ScaleHeight     =   3675
  13.    ScaleWidth      =   5970
  14.    ShowInTaskbar   =   0   'False
  15.    StartUpPosition =   2  'CenterScreen
  16.    Begin VB.Label Label1 
  17.       BackStyle       =   0  'Transparent
  18.       Height          =   2175
  19.       Left            =   3480
  20.       TabIndex        =   0
  21.       Top             =   120
  22.       Width           =   2355
  23.    End
  24. End
  25. Attribute VB_Name = "frmSplash"
  26. Attribute VB_GlobalNameSpace = False
  27. Attribute VB_Creatable = False
  28. Attribute VB_PredeclaredId = True
  29. Attribute VB_Exposed = False
  30. Option Explicit
  31. '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
  32. '
  33. '  Copyright (C) 1999-2001 Microsoft Corporation.  All Rights Reserved.
  34. '
  35. '  File:       frmSplash.frm
  36. '
  37. '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
  38.  
  39. Private Sub Form_Load()
  40.     Label1.Caption = "This sample will demonstrate how to create many of the features found in Netmeeting with Visual Basic and DirectX8." & _
  41.         vbCrLf & vbCrLf & vbCrLf & "Microsoft« Netmeeting« is ⌐Copyright Microsoft 1996-2001"
  42.     Me.Show
  43.     DoEvents
  44.     'Now wait for a short time
  45.     Sleep 1500
  46. End Sub
  47.